home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / THE_PRO.LZH / THE_PRO.ZIP / READ.ME < prev    next >
Text File  |  1987-11-30  |  947b  |  23 lines

  1. November 30, 1987
  2.  
  3. In a fit of generosity I've included the source code to the the
  4. initialization routine (since it is so IBM-PC specific I thought
  5. it would be useful for development on other systems.)
  6.  
  7. wn_init also contains most of the global variables, so be careful.
  8. (see globals.h.)
  9.  
  10.  
  11. December 1, 1987
  12.  
  13. Added a snowfree DMA mode which is somewhat faster than using
  14. BIOS.  Set 'method' = DMA, 'snowfree' = TRUE, and 'snowspeed' 
  15. = about 140.  The problem is that this mode is somewhat finicky
  16. you need to set snowspeed to a value which is less than the total
  17. number of characters that you can output during the video trace,
  18. 140 (2 bytes per character, or 70 characters) seems to be about
  19. right, but you'll have to experiment.  Also, any byte by byte
  20. video output, like vs_printf is very slow -- use wn_suspendw on
  21. the front and backend to suppress byte by byte output to the
  22. physical screen (if you want to speed it up.)
  23.